String MethodstrimEndOn this pagetrimEndPagpapaliwanagtrimStart method ay aalisin niyalang yung mga spaces sa hulihan ng string.Spaces like '\n' and '\t' included silaconst x = " hello ";console.log( x.length ) // 13//Return Valueconsole.log( x.trimStart() ) // hello console.log( x.trimStart().length ) // 9Iba pang resourcesMDN Documentation (English)